Version

DeserializeProperty<T>(SerializationEntry,T,Boolean) Method

Deserializes the specified property from the SerializationEntry object.
Syntax
'Declaration
 
Public Overloads Shared Function DeserializeProperty(Of T)( _
   ByVal entry As SerializationEntry, _
   ByVal defaultValue As T, _
   ByRef succeeded As Boolean _
) As T
public static T DeserializeProperty<T>( 
   SerializationEntry entry,
   T defaultValue,
   out bool succeeded
)

Parameters

entry
Entry used to obtain the object to deserialize
defaultValue
The default value will be returned if the de-serialization and type conversion fails.
succeeded
Will be set to True if the de-serialization succeeded.

Type Parameters

T

Return Value

The deserialized object
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also